home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / FredFish PD 319.adf / CNewsSrc / cnews.src.lzh / relay / trbatch.h < prev   
C/C++ Source or Header  |  1989-06-17  |  372b  |  18 lines

  1. /*
  2.  * interface to the transmit batch files
  3.  */
  4.  
  5. struct batchfile {
  6. #ifdef notdef
  7.     int bf_ref;            /* reference count */
  8. #endif
  9.     FILE *bf_str;            /* stream */
  10.     char *bf_name;            /* file name */
  11.     int bf_lines;            /* until fflush */
  12. };
  13.  
  14. /* imports from trbatch.c */
  15. extern struct batchfile *bfopen(), *bfisopen();
  16. extern statust bffkclose(), bfrealclose();
  17. extern int bfflush();
  18.